[Notebooks](../) - [Numerical Cartography](../numerical cartography)

Map Projections

A map projection is a systematic representation of all or part of the surface of a round body, especially the Earth, on a plane and cannot be done without inducing distortions.

There are several ways to project a curved surface on a plane and each way, projection, has its own particular characteristic. Depending on the purpose of the map a map maker, the cartographer, must choose the characteristic which is to be shown accurately at the expense of others, or a compromise of several characteristics.

The characteristics normally considered in choosing a map projection are as follows:

  • Area - (eg. equal-area map) on such maps the area is preserved (areas of same size on the map represent an area f equivalent size on the earth) Shapes, angles, and scale must be distorted on most parts of such a map. Equal-area map are also called equivalent, homolographic, or homalographic
  • Shape - (eg. conformal map) on those map the relative local angles about every point on the map are shown correctly. Because local angles are correct, meridians intersect parallels at right ($90^\circ$) angles on a conformal projection.
  • Scale (eg. quidistant projections) No map projection shows scale correctly throughout the map, but there are usually one or more lines on the map along which the scale remains true. An equidistant projection show true scale between one or two points and every other point on the map, or along every meridian.
  • Direction - While conformal maps give the relative local directions cor- rectly at any given point, there is one frequently used group of map projections, called azimuthal (or zenithal), on which the directions or azimuths of all points on the map are shown correctly with respect to the center. Some projection of this kind can be equal-area others can be conformal or equidistant
  • Special characteristic - Several map projections provide specialcharacteristics that no other projection provides. eg. On the Mercator projection the lines of constant direction (rhumb lines) are shown as straight lines. On the Gnomonic projection, all great circle paths are shown as straight lines. On the Stereographic, all small circles, as well as great circles, are shown as circles on the map.

source : Map Projections

There are several tools that can handle map projections right an easy and powerful tool to explore map projections is the cartopy python library. For several examples see the relative example notebooks


top